home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / af2gb013.zip / TEMPLATE.ZIP / NOTIFY.APL < prev    next >
Text File  |  1995-09-16  |  3KB  |  98 lines

  1. ; Template file: NOTIFY.APL
  2. ; Type         : Notify
  3. ;
  4. ; This template generates a status report along with three different lists:
  5. ;
  6. ; 1 - A list of all the fileechos a system only receives files in.
  7. ; 2 - A list of all the fileechos a system only sends files in,
  8. ; 3 - A list of all the fileechos a system both sends and receives files in.
  9. ;
  10.   Following are the options  that are set for your system and a list of areas
  11.   that your system is connected to at this system. Please check if everything
  12.   is correct.
  13.  
  14.   Aka used              : @akatouse
  15.   AreaMgr password      : @mgrpassword
  16.   File echo password    : @echopassword
  17.   File attach status    : @filestat
  18.   Other mail status     : @mailstat
  19.   TIC file mode         : @ticmode
  20.   Packing mode          : @packmode
  21.   Include template file : @template
  22.   Send notify list      : @notify
  23.   Compression type      : @compression
  24.   Available groups      : @availgroups
  25.  
  26.  
  27. @assign(@bcount,0)
  28. @assign(@count,0)
  29. @assign(@doneheader,"No")
  30. @areabegin
  31. @test(@echostat,=,"+")
  32. @test(@doneheader,=,"No")
  33.   Your system receives files from our system for the following fileechos:
  34.  
  35.   Fileecho      Description                                Avg Kb   Avg Files
  36.   ---------------------------------------------------------------------------
  37. @assign(@doneheader,"Yes")
  38. @end
  39.   @just(@fileecho,L,14)@just(@echodesc,L,39) @just(@avgkb,R,9)   @just(@avgfiles,R,9)
  40. @add(@count,1)
  41. @add(@bcount,1)
  42. @end
  43. @end
  44. @test(@doneheader,=,"Yes")
  45.   ---------------------------------------------------------------------------
  46.   @count fileecho(s)
  47. @end
  48.  
  49.  
  50. @assign(@count,0)
  51. @assign(@doneheader,"No")
  52. @areabegin
  53. @test(@echostat,=,"*")
  54. @test(@doneheader,=,"No")
  55.   Our system receives files from your system for the following fileechos:
  56.  
  57.   Fileecho      Description                                Avg Kb   Avg Files
  58.   ---------------------------------------------------------------------------
  59. @assign(@doneheader,"Yes")
  60. @end
  61.   @just(@fileecho,L,14)@just(@echodesc,L,39) @just(@avgkb,R,9)   @just(@avgfiles,R,9)
  62. @add(@count,1)
  63. @add(@bcount,1)
  64. @end
  65. @end
  66. @test(@doneheader,=,"Yes")
  67.   ---------------------------------------------------------------------------
  68.   @count fileecho(s)
  69. @end
  70.  
  71.  
  72. @assign(@count,0)
  73. @assign(@doneheader,"No")
  74. @areabegin
  75. @test(@echostat,=,"&")
  76. @test(@doneheader,=,"No")
  77.   We both send files to each other for the following fileechos:
  78.  
  79.   Fileecho      Description                                Avg Kb   Avg Files
  80.   ---------------------------------------------------------------------------
  81. @assign(@doneheader,"Yes")
  82. @end
  83.   @just(@fileecho,L,14)@just(@echodesc,L,39) @just(@avgkb,R,9)   @just(@avgfiles,R,9)
  84. @add(@count,1)
  85. @add(@bcount,1)
  86. @end
  87. @end
  88. @test(@doneheader,=,"Yes")
  89.   ---------------------------------------------------------------------------
  90.   @count fileecho(s)
  91. @end
  92. @test(@bcount,=,0)
  93.   You are not connected to any fileechos.
  94. @end
  95.  
  96. ---
  97.  * Origin: use %HELP for help using the AreaMgr in ALLFIX (@akatouse)
  98.